home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ RIVA TNT 3.xpl < prev    next >
Text File  |  2000-08-10  |  2KB  |  84 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="3"
  4. "UIPATH"="Hardware\Video Cards\NVidia\Riva TNT"
  5. "NAME"="OpenGL Settings"
  6. "VERSION"="1.14"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Enable Buffer Flipping"
  9. "TEXT 2"="Enable Vsync Blank waitstate"
  10. "TEXT 3"="Force Multi Texture"
  11. "DESCRIPTION 1"="Some options for your Riva TNT and Riva TNT 2 3D card." 
  12. "DESCRIPTION 2"="NOTE 1: This plug-in is only for use on Windows 9x/Me."
  13. "DESCRIPTION 3"="NOTE 2: Please use the NVidia reference drivers from http://www.nvidia.com with this plug-in as it may not work properly with third party drivers such as Creative Labs, Hercules, etc.  This plug-in is designed for use with the NVidia reference drivers."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18. "COMMENT 2"="Thanks to CptSiskoX!"
  19.  
  20.  
  21. sPC="HKLM\SOFTWARE\NVIDIA Corporation\Riva TNT\"
  22. sV1="HKLM\Software\NVIDIA Corporation\Riva TNT\OpenGL\EnableBufferFlipping" 'DW
  23. sV2="HKLM\Software\NVIDIA Corporation\RIVA TNT\OpenGL\EnableVBlankWait" 'DW
  24. sV3="HKLM\Software\NVIDIA Corporation\RIVA TNT\OpenGL\ForceMultiTexture" 'DW
  25. Sub Plugin_Initialize 
  26. If (GetWinVer=1 or GetWinVer=3 or GetWinVer=5) and RegPathExists(sPC) then
  27.  
  28.    i=RegReadValue(sV1)
  29.    if i=1 then SetUiElement 1,true
  30.  
  31.    i=RegReadValue(sV2)
  32.    if i=1 then SetUiElement 2,true
  33.  
  34.    i=RegReadValue(sV3)
  35.    if i=1 then SetUiElement 3,true
  36.  
  37. else
  38.    Call Disable()
  39. end if 
  40. End Sub
  41.  
  42.  
  43. Sub Plugin_CheckData(ElementIndex)
  44. End Sub
  45.  
  46.  
  47.  
  48. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  49.  b=GetUIElement(1)
  50.  if b=true then
  51.     i=1
  52.  else
  53.     i=0
  54.  end if
  55.  Call RegWriteValue(sV1,i,2)
  56.  
  57.  b=GetUIElement(2)
  58.  if b=true then
  59.     i=1
  60.  else
  61.     i=0
  62.  end if
  63.  Call RegWriteValue(sV2,i,2)
  64.  
  65.  b=GetUIElement(3)
  66.  if b=true then
  67.     i=1
  68.  else
  69.     i=0
  70.  end if
  71.  Call RegWriteValue(sV3,i,2)
  72.  
  73.  
  74.  
  75.  Call Restart()
  76. End Sub
  77.  
  78.  
  79. Sub Plugin_Terminate 
  80. End Sub
  81.  
  82.  
  83.  
  84.